﻿.company-item
{
    float: left;
    height: 100px;
    box-shadow: -1px -1px 0 #eee;
    background: #fff;
}
.company-item .default .logo-inner
{
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");
    filter: gray;
}
.company-item .default .logo-inner img
{
    max-width: 80%;
    max-height: 80%;
}
.company-item .active
{
    display: none;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-image: -webkit-linear-gradient(to bottom, #2676c3, #2676c3);
    background-image: linear-gradient(to bottom, #2676c3, #2676c3);
    background-color: #2676c3;
    padding: 10px;
    overflow: hidden;
}
.company-item .active .logo
{
    float: left;
    width: 80px;
    height: 80px;
    background-color: #fff;
    margin-right: 10px;
}
.company-item .active .logo .logo-inner
{
    width: 80px;
    height: 80px;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}
.company-item .active .logo .logo-inner img
{
    max-width: 90%;
    max-height: 90%;
}
.company-item .active .desc
{
    color: #fff;
    font-size: 12px;
    line-height: 1.6;
    margin-top:-3px;
}
.company-item:hover .active
{
    display: block;
}
